os.File.wrapErr (method)

12 uses

	os (current package)
		file.go#L119: 	return n, f.wrapErr("read", e)
		file.go#L138: 			err = f.wrapErr("read", e)
		file.go#L157: 	return n, f.wrapErr("write", e)
		file.go#L194: 		err = f.wrapErr("write", e)
		file.go#L222: 			err = f.wrapErr("write", e)
		file.go#L246: 		return 0, f.wrapErr("seek", e)
		file.go#L371: func (f *File) wrapErr(op string, err error) error {
		file_posix.go#L93: 		return f.wrapErr("chmod", e)
		file_posix.go#L141: 		return f.wrapErr("chown", e)
		file_posix.go#L154: 		return f.wrapErr("truncate", e)
		file_posix.go#L167: 		return f.wrapErr("sync", e)
		file_posix.go#L204: 		return f.wrapErr("chdir", e)